home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Freeware
/
Adobe Air 1.5
/
AdobeAIRInstaller.exe
/
setup.swf
/
scripts
/
mx
/
skins
/
halo
/
BrokenImageBorderSkin.as
< prev
next >
Wrap
Text File
|
2008-10-29
|
755b
|
30 lines
package mx.skins.halo
{
import flash.display.Graphics;
import mx.core.mx_internal;
import mx.skins.ProgrammaticSkin;
use namespace mx_internal;
public class BrokenImageBorderSkin extends ProgrammaticSkin
{
mx_internal static const VERSION:String = "3.0.0.0";
public function BrokenImageBorderSkin()
{
super();
}
override protected function updateDisplayList(param1:Number, param2:Number) : void
{
super.updateDisplayList(param1,param2);
var _loc3_:Graphics = graphics;
_loc3_.clear();
_loc3_.lineStyle(1,getStyle("borderColor"));
_loc3_.drawRect(0,0,param1,param2);
}
}
}